home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / icons+tools / associate_v1.5 / source / protos.h < prev    next >
C/C++ Source or Header  |  1994-07-31  |  520b  |  18 lines

  1. /* protos.h file for Associate (C) 1994 Hydra/LSD */
  2.  
  3. struct Node *GetNode(struct List *lh, UWORD n);
  4. void UpdateLists( void );
  5. struct Node *NewNameNode(struct List *NameList,char *str);
  6. struct TypeNode *NewTypeNode(struct List *TypeList,char *str);
  7. void FreeNameList(struct List *FileList);
  8. void FreeNameNode(struct Node *node);
  9. void FreeTypeList(struct List *TypeList);
  10. void FreeTypeNode(struct TypeNode *new);
  11. void SavePrefs( void );
  12.  
  13.  
  14. /* from GuiHandler.c */
  15. void DoInfo( char *fname);
  16. void removeinfo( char *str);
  17.  
  18.